home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 52856 / 52856.xpi / chrome / content / ff-mobile-overlay.xul < prev    next >
Extensible Markup Language  |  2009-11-29  |  1KB  |  30 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?xml-stylesheet href="chrome://handytab/skin/ff-mobile-overlay.css" type="text/css"?>
  3. <!DOCTYPE overlay SYSTEM "chrome://handytab/locale/overlay.dtd">
  4. <overlay id="handytab-overlay" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  5.   <script src="handytab.js"/>
  6.  
  7.   <stringbundleset id="stringbundleset">
  8.     <stringbundle id="handytab-strings" src="chrome://handytab/locale/overlay.properties"/>
  9.   </stringbundleset>
  10.  
  11.   <commandset id="mainCommandSet">
  12.     <command id="cmd_showHandyTab" oncommand="handytab.showTab();"/>
  13.     <command id="cmd_markPageInHandyTab" oncommand="handytab.markPage();"/>
  14.   </commandset>
  15.   
  16.   <keyset id="mainKeyset">
  17.     <key id="key_showHandyTab" key="&showHandyTabCmd.commandkey;" modifiers="accel,shift" command="cmd_showHandyTab"/>
  18.     <key id="key_markPageInHandyTab" key="&markPageInHandyTabCmd.commandkey;" modifiers="accel,shift" command="cmd_markPageInHandyTab"/>
  19.   </keyset>
  20.   
  21.   <hbox id="tabs-controls">
  22.     <toolbarbutton id="show-handytab-button" class="button-image" command="cmd_showHandyTab"/>
  23.   </hbox>
  24.  
  25.   <vbox id="browser-controls">
  26.     <toolbarbutton id="markpage-handytab-button" insertafter="tool-star" class="button-image" command="cmd_markPageInHandyTab"/>
  27.   </vbox>
  28.   
  29. </overlay>
  30.